home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Sep / di9809jp / BlastServer / BlastServer.dpr < prev    next >
Text File  |  1998-03-03  |  263b  |  16 lines

  1. program BlastServer;
  2.  
  3. uses
  4.   Forms,
  5.   Main in '..\Main.pas' {frmMain},
  6.   About in 'About.pas' {frmAbout},
  7.   SendMsg in 'SendMsg.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TfrmMain, frmMain);
  14.   Application.Run;
  15. end.
  16.